home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19960715-19961006 / 000224_news@columbia.edu _Wed Aug 21 14:05:47 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: news@columbia.edu
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30]) by watsun.cc.columbia.edu (8.7.5/8.7.3) with ESMTP id OAA01451 for <kermit.misc@watsun.cc.columbia.edu>; Wed, 21 Aug 1996 14:05:45 -0400 (EDT)
  3. Received: (from news@localhost) by newsmaster.cc.columbia.edu (8.7.5/8.7.3) id OAA24006 for kermit.misc@watsun; Wed, 21 Aug 1996 14:05:44 -0400 (EDT)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: K95 1.1.7 send/receive
  8. Date: 21 Aug 1996 18:05:23 GMT
  9. Organization: Columbia University
  10. Lines: 31
  11. Message-ID: <4vfj53$dd2@apakabar.cc.columbia.edu>
  12. References: <4vf5rh$13tg@ns4-1.CC.Lehigh.EDU>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14.  
  15. In article <4vf5rh$13tg@ns4-1.CC.Lehigh.EDU>,  <jmt7@Lehigh.EDU> wrote:
  16. : Has send/receive broken in K95 v1.1.7? I tried a simple transfer from
  17. : host to PC in which I put the PC file in a new dir.
  18. : For example:    from host kermit> send myfile
  19. :                         from K95> rec c:/utils/myfile
  20. : In v1.1.7 "myfile" is stored into the K95 dir (the default), despite
  21. : the full path (yes, the target dir exists). I dug out my original v1.1
  22. : dated 10/5/95 and reinstalled it from floppy and the above sequence
  23. : works.
  24. It appears to be a bug.  If you say:
  25.  
  26.   receive xxx
  27.  
  28. where xxx is a full pathname INCLUDING a filename, the disk:directory
  29. part of the pathname seems to be ignored, and the file is stored in the
  30. current directory under the filename part from "xxx".  For example, if
  31. your current directory is D:\FOO and you say "receive e:\test\foo.bar"
  32. and then the incoming file, no matter what its name is, goes into
  33. d:\foo\foo.bar.  HOWEVER, if you say:
  34.  
  35.   receive yyy
  36.  
  37. where yyy is a disk and or directory name that does NOT include a filename,
  38. the file goes into the specified disk and directory under its own name.
  39.  
  40. We'll need to fix this one.  Thanks for noticing.
  41.  
  42. - Frank